using UnityEditor;
using UnityEngine;
using System;
using Object = UnityEngine.Object;

namespace MagicaCloth
{
    public class MagicaSphereColliderGizmoDrawer
    {
        static void DrawGizmo(MagicaSphereCollider scr, GizmoType gizmoType)
        {
            throw new NotImplementedException();
        }

        public static void DrawGizmo(MagicaSphereCollider scr, bool selected)
        {
            throw new NotImplementedException();
        }
    }
}